Autogenerated HTML docs for v1.7.7-rc2-4-g5ec82 
diff --git a/git-count-objects.html b/git-count-objects.html index e43cb46..3d5cce2 100644 --- a/git-count-objects.html +++ b/git-count-objects.html 
@@ -3,7 +3,7 @@  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">   <head>   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  -<meta name="generator" content="AsciiDoc 8.4.5" />  +<meta name="generator" content="AsciiDoc 8.5.2" />   <title>git-count-objects(1)</title>   <style type="text/css">   /* Debug borders */  @@ -118,12 +118,14 @@  div.tableblock, div.imageblock, div.exampleblock, div.verseblock,   div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,   div.admonitionblock {  - margin-top: 1.5em;  + margin-top: 1.0em;   margin-bottom: 1.5em;   }   div.admonitionblock {  - margin-top: 2.5em;  - margin-bottom: 2.5em;  + margin-top: 2.0em;  + margin-bottom: 2.0em;  + margin-right: 10%;  + color: #606060;   }     div.content { /* Block element content. */  @@ -165,19 +167,19 @@  padding: 0.5em;   }    -div.quoteblock {  - padding-left: 2.0em;  +div.quoteblock, div.verseblock {  + padding-left: 1.0em;  + margin-left: 1.0em;   margin-right: 10%;  + border-left: 5px solid #dddddd;  + color: #777777;   }  +   div.quoteblock > div.attribution {   padding-top: 0.5em;   text-align: right;   }    -div.verseblock {  - padding-left: 2.0em;  - margin-right: 10%;  -}   div.verseblock > div.content {   white-space: pre;   }  @@ -200,12 +202,12 @@  }   div.admonitionblock td.content {   padding-left: 0.5em;  - border-left: 2px solid silver;  + border-left: 3px solid #dddddd;   }     div.exampleblock > div.content {  - border-left: 2px solid silver;  - padding: 0.5em;  + border-left: 3px solid #dddddd;  + padding-left: 0.5em;   }     div.imageblock div.content { padding-left: 0; }  @@ -255,7 +257,7 @@  div.tableblock > table {   border: 3px solid #527bbd;   }  -thead {  +thead, p.table.header {   font-family: sans-serif;   font-weight: bold;   }  @@ -310,10 +312,42 @@  background: yellow;   }    +.footnote, .footnoteref {  + font-size: 0.8em;  +}  +  +span.footnote, span.footnoteref {  + vertical-align: super;  +}  +  +#footnotes {  + margin: 20px 0 20px 0;  + padding: 7px 0 0 0;  +}  +  +#footnotes div.footnote {  + margin: 0 0 5px 0;  +}  +  +#footnotes hr {  + border: none;  + border-top: 1px solid silver;  + height: 1px;  + text-align: left;  + margin-left: 0;  + width: 20%;  + min-width: 100px;  +}  +  +   @media print {   div#footer-badges { display: none; }   }    +div#toc {  + margin-bottom: 2.5em;  +}  +   div#toctitle {   color: #527bbd;   font-family: sans-serif;  @@ -392,13 +426,146 @@  }     div.exampleblock-content {  - border-left: 2px solid silver;  + border-left: 3px solid #dddddd;   padding-left: 0.5em;   }     /* IE6 sets dynamically generated links as visited. */   div#toc a:visited { color: blue; }   </style>  +<script type="text/javascript">  +/*<![CDATA[*/  +window.onload = function(){asciidoc.footnotes();}  +var asciidoc = { // Namespace.  +  +/////////////////////////////////////////////////////////////////////  +// Table Of Contents generator  +/////////////////////////////////////////////////////////////////////  +  +/* Author: Mihai Bazon, September 2002  + * http://students.infoiasi.ro/~mishoo  + *  + * Table Of Content generator  + * Version: 0.4  + *  + * Feel free to use this script under the terms of the GNU General Public  + * License, as long as you do not remove or alter this notice.  + */  +  + /* modified by Troy D. Hanson, September 2006. License: GPL */  + /* modified by Stuart Rackham, 2006, 2009. License: GPL */  +  +// toclevels = 1..4.  +toc: function (toclevels) {  +  + function getText(el) {  + var text = "";  + for (var i = el.firstChild; i != null; i = i.nextSibling) {  + if (i.nodeType == 3 /* Node.TEXT_NODE */) // IE doesn't speak constants.  + text += i.data;  + else if (i.firstChild != null)  + text += getText(i);  + }  + return text;  + }  +  + function TocEntry(el, text, toclevel) {  + this.element = el;  + this.text = text;  + this.toclevel = toclevel;  + }  +  + function tocEntries(el, toclevels) {  + var result = new Array;  + var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');  + // Function that scans the DOM tree for header elements (the DOM2  + // nodeIterator API would be a better technique but not supported by all  + // browsers).  + var iterate = function (el) {  + for (var i = el.firstChild; i != null; i = i.nextSibling) {  + if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {  + var mo = re.exec(i.tagName);  + if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {  + result[result.length] = new TocEntry(i, getText(i), mo[1]-1);  + }  + iterate(i);  + }  + }  + }  + iterate(el);  + return result;  + }  +  + var toc = document.getElementById("toc");  + var entries = tocEntries(document.getElementById("content"), toclevels);  + for (var i = 0; i < entries.length; ++i) {  + var entry = entries[i];  + if (entry.element.id == "")  + entry.element.id = "_toc_" + i;  + var a = document.createElement("a");  + a.href = "#" + entry.element.id;  + a.appendChild(document.createTextNode(entry.text));  + var div = document.createElement("div");  + div.appendChild(a);  + div.className = "toclevel" + entry.toclevel;  + toc.appendChild(div);  + }  + if (entries.length == 0)  + toc.parentNode.removeChild(toc);  +},  +  +  +/////////////////////////////////////////////////////////////////////  +// Footnotes generator  +/////////////////////////////////////////////////////////////////////  +  +/* Based on footnote generation code from:  + * http://www.brandspankingnew.net/archive/2005/07/format_footnote.html  + */  +  +footnotes: function () {  + var cont = document.getElementById("content");  + var noteholder = document.getElementById("footnotes");  + var spans = cont.getElementsByTagName("span");  + var refs = {};  + var n = 0;  + for (i=0; i<spans.length; i++) {  + if (spans[i].className == "footnote") {  + n++;  + // Use [\s\S] in place of . so multi-line matches work.  + // Because JavaScript has no s (dotall) regex flag.  + note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];  + noteholder.innerHTML +=  + "<div class='footnote' id='_footnote_" + n + "'>" +  + "<a href='#_footnoteref_" + n + "' title='Return to text'>" +  + n + "</a>. " + note + "</div>";  + spans[i].innerHTML =  + "[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +  + "' title='View footnote' class='footnote'>" + n + "</a>]";  + var id =spans[i].getAttribute("id");  + if (id != null) refs["#"+id] = n;  + }  + }  + if (n == 0)  + noteholder.parentNode.removeChild(noteholder);  + else {  + // Process footnoterefs.  + for (i=0; i<spans.length; i++) {  + if (spans[i].className == "footnoteref") {  + var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");  + href = href.match(/#.*/)[0]; // Because IE return full URL.  + n = refs[href];  + spans[i].innerHTML =  + "[<a href='#_footnote_" + n +  + "' title='View footnote' class='footnote'>" + n + "</a>]";  + }  + }  + }  +}  +  +}  +/*]]>*/  +</script>   </head>   <body>   <div id="header">  @@ -412,6 +579,7 @@  </p>   </div>   </div>  +<div id="content">   <h2 id="_synopsis">SYNOPSIS</h2>   <div class="sectionbody">   <div class="verseblock">  @@ -448,9 +616,11 @@  <div class="sectionbody">   <div class="paragraph"><p>Part of the <a href="git.html">git(1)</a> suite</p></div>   </div>  +</div>  +<div id="footnotes"><hr /></div>   <div id="footer">   <div id="footer-text">  -Last updated 2011-07-23 00:49:30 UTC  +Last updated 2011-09-21 23:01:14 PDT   </div>   </div>   </body>